fix: allow pcss ending for webpack loader (#4530)

[skip ci]
This commit is contained in:
Alexander Lichter 2018-12-12 06:22:43 +00:00 committed by Pooya Parsa
parent 88668f0fc4
commit 8e0b5081f2
3 changed files with 2 additions and 2 deletions

View File

@ -235,7 +235,7 @@ export default class WebpackBaseConfig {
oneOf: styleLoader.apply('css') oneOf: styleLoader.apply('css')
}, },
{ {
test: /\.postcss$/, test: /\.p(ost)?css$/,
oneOf: styleLoader.apply('postcss') oneOf: styleLoader.apply('postcss')
}, },
{ {

View File

@ -77,7 +77,7 @@ export default {
}) })
} }
}, },
css: [{ src: '~/assets/app.css' }], css: [{ src: '~/assets/app.pcss' }],
render: { render: {
csp: true, csp: true,
http2: { http2: {