forked from potsda.mn/mobilizon
⚙️ Build js with .env from parent directory
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
5a140bef35
commit
da817d35c4
|
@ -1,4 +1,5 @@
|
|||
const Dotenv = require('dotenv-webpack');
|
||||
const path = require('path');
|
||||
|
||||
module.exports = {
|
||||
lintOnSave: false,
|
||||
|
@ -6,7 +7,7 @@ module.exports = {
|
|||
outputDir: '../priv/static',
|
||||
configureWebpack: {
|
||||
plugins: [
|
||||
new Dotenv(),
|
||||
new Dotenv({ path: path.resolve(process.cwd(), '../.env') }),
|
||||
],
|
||||
},
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue