We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34c1eb7 commit c982c04Copy full SHA for c982c04
webpack-config.js
@@ -1,4 +1,5 @@
1
var Clean = require('clean-webpack-plugin');
2
+const path = require('path');
3
// var ExtractTextPlugin = require('extract-text-webpack-plugin');
4
var HtmlWebpackPlugin = require('html-webpack-plugin');
5
const TerserPlugin = require('terser-webpack-plugin');
@@ -30,7 +31,8 @@ module.exports = {
30
31
},
32
output: {
33
// path: './dist',
- path: '/home/shlomif/Download/unpack/games/freecell/webpack-jquery-ui/dist/',
34
+ path: path.resolve(__dirname, 'dist'),
35
+ // path: '/home/shlomif/Download/unpack/games/freecell/webpack-jquery-ui/dist/',
36
filename: 'tot.js'
37
38
/*
0 commit comments