mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2024-12-27 02:10:27 +00:00
da817d35c4
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
13 lines
289 B
JavaScript
13 lines
289 B
JavaScript
const Dotenv = require('dotenv-webpack');
|
|
const path = require('path');
|
|
|
|
module.exports = {
|
|
lintOnSave: false,
|
|
runtimeCompiler: true,
|
|
outputDir: '../priv/static',
|
|
configureWebpack: {
|
|
plugins: [
|
|
new Dotenv({ path: path.resolve(process.cwd(), '../.env') }),
|
|
],
|
|
},
|
|
};
|