Giter VIP home page Giter VIP logo

Comments (7)

catamphetamine avatar catamphetamine commented on May 23, 2024 1

@yousefallaban

Ok, but it's possible to use it with universal-webpack. ?

Won't able to tell you that.
I only tested universal-webpack with generic cases.
Your case seems to be a complex one.

from universal-webpack.

Yallaban avatar Yallaban commented on May 23, 2024

I think when I add this to my webpack.config it'll use it when target: 'node' and that's why I got
exports.ids = ['libserver'];
exports.modules = [...]

from universal-webpack.

Yallaban avatar Yallaban commented on May 23, 2024

the fix is that the splitChunks part should be placed in the cleint.config

from universal-webpack.

catamphetamine avatar catamphetamine commented on May 23, 2024

@Yallaban What if you leave splitChunks in the main config and then delete it from server config instead?
https://webpack.js.org/plugins/split-chunks-plugin/
Perhaps serverConfiguration() should delete configuration.optimization.splitChunks if (configuration.optimization.splitChunks).

from universal-webpack.

yousefallaban avatar yousefallaban commented on May 23, 2024

@catamphetamine that what I did in the first place but It will still give error it'll not delete it at all
special keyword to do that?

I have another Q if you could help out with. I'm trying to implement the Dllplgin but I stuck with that, could you please given a hint or example that made with universal-webpack.

what i did is create new file and add this to it

const webpack = require('webpack');

const outputPath = path.resolve(__dirname, '..', 'dist', 'public');
module.exports = {
  context: process.cwd(),
  resolve: {
    extensions: ['.js', '.jsx', '.json', '.less', '.css'],
    modules: [__dirname, 'node_modules'],
  },

  entry: {
    ReactStuff: [
      'react',
      'react-dom',
      'react-router',
      'redux',
      'react-redux',
    ],
  },
  output: {
    filename: '[name].dll.js',
    path: outputPath,
    library: '[name]',
  },
  plugins: [
    new webpack.DllPlugin({
      name: '[name]',
      path: path.join(outputPath, '[name].json'),
    }),
  ],
}```

and added the `DllReferencePlugin` to `webpack.config.js` like this.
```new webpack.DllReferencePlugin({
      context: process.cwd(),
      manifest: require(path.join(outputPath, 'ReactStuff.json')),
    })```

but it doesn't build
`Error: Cannot find module '/Users/yousefallaban/Documents/work/Wehkamp/checkout-site/blaze-one-page-checkout-site-nl.wehkamp/dist/public/ReactStuff.json`

from universal-webpack.

catamphetamine avatar catamphetamine commented on May 23, 2024

@yousefallaban

that what I did in the first place but It will still give error

I see. Ok.

I have another Q if you could help out with. I'm trying to implement the Dllplgin but I stuck with that, could you please given a hint or example that made with universal-webpack.

I didn't use DllPlugin.

from universal-webpack.

yousefallaban avatar yousefallaban commented on May 23, 2024

@catamphetamine
Ok, but it's possible to use it with universal-webpack. ?

from universal-webpack.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.