fix(build): prevent all styles from being purged
Signed-off-by: SphericalKat <amolele@gmail.com>
This commit is contained in:
parent
0091de08b0
commit
40b55e47de
@ -24,11 +24,10 @@ RUN npm --prefix ./assets ci --progress=false --no-audit --loglevel=error
|
||||
|
||||
COPY priv priv
|
||||
COPY assets assets
|
||||
COPY lib lib
|
||||
RUN npm run --prefix ./assets deploy
|
||||
RUN mix phx.digest
|
||||
|
||||
# compile and build release
|
||||
COPY lib lib
|
||||
# uncomment COPY if rel/ exists
|
||||
# COPY rel rel
|
||||
RUN mix do compile, release
|
||||
|
@ -3,7 +3,7 @@
|
||||
"description": " ",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"deploy": "webpack --mode production",
|
||||
"deploy": "NODE_ENV=production webpack --mode production",
|
||||
"watch": "webpack --mode development --watch"
|
||||
},
|
||||
"dependencies": {
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 264 KiB After Width: | Height: | Size: 3.6 KiB |
@ -9,6 +9,10 @@ const CopyWebpackPlugin = require('copy-webpack-plugin');
|
||||
module.exports = (env, options) => {
|
||||
const devMode = options.mode !== 'production';
|
||||
|
||||
const PATHS = {
|
||||
src: path.join(__dirname, '../')
|
||||
}
|
||||
|
||||
return {
|
||||
optimization: {
|
||||
minimizer: [
|
||||
@ -47,7 +51,7 @@ module.exports = (env, options) => {
|
||||
},
|
||||
plugins: [
|
||||
new MiniCssExtractPlugin({ filename: '../css/app.css' }),
|
||||
new CopyWebpackPlugin([{ from: 'static/', to: '../' }])
|
||||
new CopyWebpackPlugin([{ from: 'static/', to: '../' }]),
|
||||
]
|
||||
.concat(devMode ? [new HardSourceWebpackPlugin()] : [])
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user