Skip to content

Commit

Permalink
Merge pull request #1757 from SUI-Components/fix/ssr-dev
Browse files Browse the repository at this point in the history
fix(packages/sui-bundler): ssr dev
  • Loading branch information
andresz1 authored May 6, 2024
2 parents 87d2a25 + ef141de commit b66dd20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/sui-bundler/webpack.config.client.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const {aliasFromConfig, defaultAlias} = require('./shared/resolve-alias.js')
const {supportLegacyBrowsers, cacheDirectory} = require('./shared/config.js')

const {resolveLoader} = require('./shared/resolve-loader.js')
const createBabelRules = require('./shared/module-rules-babel.js')
const createCompilerRules = require('./shared/module-rules-compiler.js')

const outputPath = path.join(process.cwd(), '.sui/public')

Expand Down Expand Up @@ -93,7 +93,7 @@ const webpackConfig = {
resolveLoader,
module: {
rules: cleanList([
createBabelRules({supportLegacyBrowsers, isDevelopment: true}),
createCompilerRules({supportLegacyBrowsers, isDevelopment: true}),
{
test: /(\.css|\.scss)$/,
use: cleanList([
Expand Down

0 comments on commit b66dd20

Please sign in to comment.