123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- const { defineConfig } = require("@vue/cli-service");
- const linariaLessLoader = require("@queenjs/webpack-loader/linaria-loader");
- const modifyVars = require("./src/styles/theme-antd");
- const path = require("path");
- const publicPath =
- process.env.NODE_ENV === "production"
- ? `//infishwaibao.oss-cn-chengdu.aliyuncs.com/screenshow/`
- : "./";
- // const publicPath = "./";
- // //
- module.exports = defineConfig({
- pages: {
- index: "src/pages/website/main.ts",
- // frame3d: "src/pages/frame3d/main.ts"
- },
- outputDir: "dist",
- publicPath: publicPath,
- transpileDependencies: true,
- chainWebpack: (config) => {
- const tsRule = config.module.rule("ts");
- tsRule
- .use("moduse-loader")
- .loader("moduse/webpack-loader")
- .options({
- include: [
- path.resolve(__dirname, "./src/modules"),
- path.resolve(__dirname, "./src/modules-ctx"),
- path.resolve(__dirname, "./src/modules-package"),
- path.resolve(__dirname, "./node_modules/@queenjs-modules"),
- ],
- });
- const tsxRule = config.module.rule("tsx");
- tsxRule.uses.store.delete("thread-loader");
- tsxRule
- .use("@linaria/webpack-loader")
- .loader("@linaria/webpack-loader")
- .options({
- // 将.css文件更名为.less
- extension: ".linaria.less",
- preprocessor: linariaLessLoader("@/styles/theme"),
- })
- .before("ts-loader");
- },
- css: {
- loaderOptions: {
- less: {
- lessOptions: {
- modifyVars,
- javascriptEnabled: true,
- },
- },
- },
- },
- pluginOptions: {
- windicss: {
- scan: {
- dirs: ["node_modules/@queenjs-modules"],
- fileExtensions: ["tsx"]
- },
- preflight: false,
- onOptionsResolved: (options) => {
- options.scanOptions.extraTransformTargets = {
- css: [(f) => {
- if (/node_modules\\@queenjs-modules\\.+\.(css|less)/.test(f)) {
- return true;
- }
- return false;
- }],
- detect: [],
- }
- return options
- },
- // see https://github.com/windicss/vite-plugin-windicss/blob/main/packages/plugin-utils/src/options.ts
- },
- },
- });
|