GithubHelp home page GithubHelp logo

Comments (5)

jimthedev avatar jimthedev commented on July 28, 2024 4

Hi @DebugIsFalse. It turns out that in version 4.2.2 of react-router they will be recommending to go to react-loadable and babel-plugin-syntax-dynamic-import. You can get it working with

  1. npm install --save react-loadable
  2. npm install --save-dev babel-plugin-syntax-dynamic-import
  3. Add "syntax-dynamic-import" to the plugins key of .babelrc
  4. Use the following in your app.js or whatever:
import React from 'react';
import { BrowserRouter, Route, Switch } from 'react-router-dom';
import Loadable from 'react-loadable';

const Loading = () => {
  return <div>Loading...</div>
}

const Index = Loadable({
  loader: () => import('../views/index/index'),
  loading: Loading,
});

const About = Loadable({
  loader: () => import('../views/about'),
  loading: Loading,
});

export default () => (
  <BrowserRouter>
    <Switch>
      <Route path="/" exact render={() => <Index name="Jim" value="Hi" />} />
      <Route path="/about/:name" component={About} />
    </Switch>
  </BrowserRouter>
);

from bundle-loader.

alexander-akait avatar alexander-akait commented on July 28, 2024

@DebugIsFalse please provide minimum reproducible test repo, it is difficult to search problem in code inside in github issue post, thanks!

from bundle-loader.

DebugIsFalse avatar DebugIsFalse commented on July 28, 2024

when i use webpack3 + react-router4 + es6 +bundle-loader to do 'Load on demand', this is no problem;
it can follow react-router4 website demo to do;

but is change to the typescript cannot to do and the code is more ,i cannot show the code;
and if use import index from 'bundle-loader?lazy!./router/home/index'; it cannot reslove the path;

from bundle-loader.

luqimin avatar luqimin commented on July 28, 2024

@DebugIsFalse Did you solve this? I also have this problem and dont know how to clear tsc compile error

update: Solved by add bundle-loader into webpack.config.json and set options.lazy with true

from bundle-loader.

Yan1 avatar Yan1 commented on July 28, 2024

I also have this problem and it works with import * as HomeIndex from './router/homes/home'; instead of import HomeIndex from './router/homes/home';

from bundle-loader.

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.