diff options
author | Marvin Borner | 2018-07-14 21:35:49 +0200 |
---|---|---|
committer | Marvin Borner | 2018-07-14 21:35:49 +0200 |
commit | 119c37b6906de66b5ee8e52378f8d08938f37f63 (patch) | |
tree | 6dfce25cf811969a69e970ced35164b06076ea7b /webpack.mix.js | |
parent | c4654913a951e0fc9835367617ceed8827b10108 (diff) |
Added theoratical use of typescript and fixed some node bugs
Diffstat (limited to 'webpack.mix.js')
-rwxr-xr-x | webpack.mix.js | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/webpack.mix.js b/webpack.mix.js index 36d9f82..6c4c45f 100755 --- a/webpack.mix.js +++ b/webpack.mix.js @@ -15,6 +15,7 @@ let SWPrecacheWebpackPlugin = require('sw-precache-webpack-plugin'); mix.js('resources/assets/js/app.js', 'public/js') .js('resources/assets/js/admin.js', 'public/js') .js('resources/assets/js/initial_key_gen.js', 'public/js') + // .ts('resources/assets/js/typescript.ts', 'public/js') => use of typescript! .sass('resources/assets/sass/admin.scss', 'public/css') .sass('resources/assets/sass/app.scss', 'public/css') .sourceMaps() @@ -35,7 +36,16 @@ mix.js('resources/assets/js/app.js', 'public/js') } } }) - .disableNotifications().webpackConfig({ + .disableNotifications() + .webpackConfig({ + module: { + rules: [{ + loader: 'postcss-loader', + options: { + plugins: () => [require('autoprefixer')] + } + }] + }, plugins: [ new SWPrecacheWebpackPlugin({ cacheId: 'BEAM-Messenger', |