vue.config.js 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. const modifyVars = require("queenjs/ui/styles/theme-light");
  2. const path = require('path');
  3. const fs = require('fs');
  4. const MiniCssExtractPlugin = require('mini-css-extract-plugin');
  5. const getDirectories = (source) =>
  6. fs
  7. .readdirSync(source, { withFileTypes: true })
  8. .filter((dirent) => dirent.isDirectory())
  9. .map((dirent) => dirent.name);
  10. const getAlias = (alias, path) => {
  11. const aliases = {};
  12. const dirs = getDirectories(path);
  13. dirs.forEach((dir) => (aliases[`${alias}/${dir}`] = `${path}/${dir}`));
  14. return aliases;
  15. };
  16. const aliases = getAlias('@', path.resolve(__dirname, './src'));
  17. module.exports = {
  18. publicPath: "./",
  19. // process.env.NODE_ENV === 'production'
  20. // ? `//infishwaibao.oss-cn-chengdu.aliyuncs.com/bess/`
  21. // : './',
  22. lintOnSave: false,
  23. pages: {
  24. index: {
  25. entry: 'src/pages/website/main.ts',
  26. template: 'public/index.html',
  27. filename: 'index.html',
  28. chunks: ['chunk-vendors', 'chunk-common', 'index']
  29. },
  30. frame3d: {
  31. entry: 'src/pages/frame3d/main.ts',
  32. template: 'public/index.html',
  33. filename: 'frame3d.html',
  34. chunks: ['chunk-vendors', 'chunk-common', 'frame3d']
  35. },
  36. },
  37. css: {
  38. extract: {
  39. ignoreOrder: true
  40. },
  41. loaderOptions: {
  42. less: {
  43. lessOptions: {
  44. modifyVars,
  45. javascriptEnabled: true,
  46. },
  47. },
  48. },
  49. },
  50. chainWebpack: (config) => {
  51. if (process.env.NODE_ENV === 'production') {
  52. config.plugin('extract-css').tap((args) => {
  53. args[0].ignoreOrder = true;
  54. return args;
  55. });
  56. config.optimization.minimizer('terser').tap(args => {
  57. Object.assign(args[0].terserOptions.compress, {
  58. pure_funcs: ['console.log']
  59. })
  60. return args
  61. })
  62. }
  63. },
  64. configureWebpack: {
  65. module: {
  66. rules: [
  67. {
  68. test: /\.(tsx)$/,
  69. use: [
  70. {
  71. loader: '@linaria/webpack-loader',
  72. options: {
  73. sourceMap: process.env.NODE_ENV !== 'production',
  74. babelOptions: {
  75. plugins: [
  76. [
  77. 'babel-plugin-module-resolver',
  78. {
  79. root: ['.'], //the value mentioned in the path section of the `tsconfig.json based on your CWD`
  80. extensions: ['.tsx', '.ts'],
  81. alias: aliases, //The important part!!
  82. },
  83. ],
  84. ],
  85. },
  86. },
  87. },
  88. ],
  89. }, {
  90. test: /\.svga$/,
  91. use: [{ loader: 'file-loader' }],
  92. },
  93. {
  94. test: /\.(frag|vert|glsl)$/,
  95. use: [{ loader: 'raw-loader' }],
  96. }, {
  97. test: /\.(glb)$/,
  98. use: [{ loader: 'url-loader' }],
  99. },
  100. ],
  101. },
  102. },
  103. };