var path = require('path') module.exports = function (env) { let currentTest = path.resolve(__dirname, env) return { mode: 'development', devtool: 'eval-source-map', devServer: { contentBase: [currentTest, __dirname] }, devServer: { contentBase: [currentTest, '..'] }, entry: { app: path.resolve(currentTest, 'main.js') }, output: { path: currentTest, filename: 'bundle.js' }, resolve: { modules: [path.resolve(__dirname, 'node_modules'), 'node_modules'] } } } >
A collection of useful .gitignore templates: https://github.com/github/gitignorewww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/Symfony.gitignore
blob: e5d08cbe0c352102b44a9d96bfb3938471f5b58d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15