mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2025-01-05 07:02:56 +00:00
93a97b0865
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
11 lines
180 B
JavaScript
11 lines
180 B
JavaScript
const Dotenv = require('dotenv-webpack');
|
|
|
|
module.exports = {
|
|
lintOnSave: false,
|
|
runtimeCompiler: true,
|
|
configureWebpack: {
|
|
plugins: [
|
|
new Dotenv(),
|
|
],
|
|
},
|
|
};
|