webpack.config.js 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. var path = require('path');
  2. var webpack = require('webpack');
  3. var HtmlWebpackPlugin = require('html-webpack-plugin');
  4. var BrowserSyncPlugin = require('browser-sync-webpack-plugin');
  5. // var CopyWebpackPlugin = require('copy-webpack-plugin');
  6. var { CleanWebpackPlugin } = require('clean-webpack-plugin');
  7. if (process.env.DEV) {
  8. console.log('Loading .env variables');
  9. require('dotenv').config({path: __dirname + '/.env'});
  10. }
  11. const JOJOAPPS_SERVER = '149.91.81.94';
  12. const JOJOAPPS_SERVER_PORT = 2610;
  13. // Env variables have effect in app : main.js & socket-service.js & index.html
  14. // Also in Server : mariadb-connector.js
  15. var definePlugin = new webpack.DefinePlugin({
  16. 'process.env.DEV': JSON.stringify(JSON.parse(process.env.DEV || 'false')),
  17. 'process.env.WEB': JSON.stringify(JSON.parse(process.env.WEB || 'false')),
  18. 'process.env.CORDOVA': JSON.stringify(JSON.parse(process.env.CORDOVA || 'false')),
  19. 'process.env.SERVER_HOST': JSON.stringify(process.env.SERVER_HOST || JOJOAPPS_SERVER),
  20. 'process.env.SERVER_PORT': JSON.stringify(process.env.SERVER_PORT || JOJOAPPS_SERVER_PORT)
  21. });
  22. var outpath = './webpack/';
  23. if (process.env.CORDOVA === "true") {
  24. outpath = './www/';
  25. console.log('CORDOVA environment : output in ',outpath);
  26. } else if (process.env.WEB === "true") {
  27. outpath = './www_web/';
  28. console.log('WEB environment : output in ',outpath);
  29. } else {
  30. console.log('DEV env : output in ', outpath);
  31. }
  32. // new CopyWebpackPlugin([
  33. // {
  34. // context: path.resolve(__dirname, 'src', 'assets'),
  35. // from: '**/*',
  36. // to: path.resolve(__dirname, outpath, 'assets')
  37. // }
  38. // ]),
  39. module.exports = {
  40. devtool: 'cheap-source-map',
  41. mode: 'development',
  42. entry: {
  43. app: path.resolve(__dirname, 'src/main.js')
  44. },
  45. output: {
  46. filename: 'app.bundle.js',
  47. path: path.resolve(__dirname, outpath)
  48. },
  49. plugins: [
  50. definePlugin,
  51. new CleanWebpackPlugin(),
  52. new HtmlWebpackPlugin({
  53. template: './src/index.html'
  54. }),
  55. new BrowserSyncPlugin({
  56. host: process.env.IP || 'localhost',
  57. port: process.env.PORT || 3000,
  58. server: {
  59. baseDir: [outpath, './build']
  60. },
  61. browser: ["firefox"]
  62. }),
  63. new BrowserSyncPlugin({
  64. host: process.env.IP || 'localhost',
  65. port: process.env.PORT || 3005,
  66. server: {
  67. baseDir: [outpath, './build']
  68. },
  69. browser: ["firefox"]
  70. }),
  71. new webpack.DefinePlugin({
  72. CANVAS_RENDERER: JSON.stringify(true),
  73. WEBGL_RENDERER: JSON.stringify(true)
  74. })
  75. ],
  76. module: {
  77. rules: [
  78. { test: /\.js$/, exclude: /(node_modules|server)/, loaders: "babel-loader" },
  79. {
  80. test: /\.(png|svg|jpg|gif)$/,
  81. use: {
  82. loader: 'file-loader',
  83. options: {
  84. esModule: false
  85. }
  86. }
  87. },
  88. {
  89. test: /\.html$/,
  90. exclude: /index.html/,
  91. use: [
  92. {
  93. loader: 'html-loader',
  94. options: { minimize: true }
  95. }
  96. ]
  97. },
  98. {
  99. test: [/\.vert$/, /\.frag$/],
  100. use: "raw-loader"
  101. }
  102. ]
  103. }
  104. };