![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/rentpix.corals.io/vendor/swagger-api/swagger-ui/webpack/ |
/** * @prettier */ // NOTE: this config *does not* inherit from `_config-builder`. // It is also used in the dev config. const path = require("path") const MiniCssExtractPlugin = require("mini-css-extract-plugin") module.exports = { mode: "production", entry: { "swagger-ui": "./src/style/main.scss", }, module: { rules: [ { test: [/\.(scss)(\?.*)?$/], use: [ { loader: MiniCssExtractPlugin.loader, }, { loader: "css-loader", options: { sourceMap: true }, }, { loader: "postcss-loader", options: { postcssOptions: { sourceMap: true, plugins: [ require("cssnano")(), "postcss-preset-env", // applies autoprefixer ], }, }, }, { loader: "sass-loader", options: { // Prefer `dart-sass` implementation: require("sass"), sourceMap: true, sassOptions: { quietDeps: true, }, }, }, ], }, ], }, plugins: [ new MiniCssExtractPlugin({ filename: "[name].css", }), ], devtool: "source-map", output: { path: path.join(__dirname, "../", "dist"), publicPath: "/dist", }, optimization: { splitChunks: { cacheGroups: { styles: { name: "styles", test: /\.css$/, chunks: "all", enforce: true, }, }, }, }, }