├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .postcssrc.js ├── .vscode ├── launch.json └── settings.json ├── README.md ├── Untitled-1.js ├── config ├── dev.env.js ├── index.js └── prod.env.js ├── index.html ├── package.json ├── src ├── App.vue ├── animations │ ├── webpack-logo-animation-spin-reverse.js │ └── webpack-logo-animation-spin.js ├── assets │ └── logo.png ├── components │ ├── CodeExample │ │ ├── CodeExample.vue │ │ └── index.js │ ├── ErrorComponent.vue │ ├── LoadingComponent.vue │ └── WebpackLogo.vue ├── main.js ├── pages │ ├── ExampleFour.vue │ ├── ExampleOne.vue │ ├── ExampleThree.vue │ ├── ExampleTwo.vue │ └── Home.vue ├── router │ └── index.js └── utilities │ ├── asyncComponent.js │ ├── asyncRoute.js │ └── fancyAsyncComponent.js ├── static ├── img │ └── icons │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon-120x120.png │ │ ├── apple-touch-icon-152x152.png │ │ ├── apple-touch-icon-180x180.png │ │ ├── apple-touch-icon-60x60.png │ │ ├── apple-touch-icon-76x76.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── msapplication-icon-144x144.png │ │ ├── mstile-150x150.png │ │ └── safari-pinned-tab.svg └── manifest.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/.postcssrc.js -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "eslint.enable": true 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/README.md -------------------------------------------------------------------------------- /Untitled-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/Untitled-1.js -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/config/dev.env.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/package.json -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/animations/webpack-logo-animation-spin-reverse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/src/animations/webpack-logo-animation-spin-reverse.js -------------------------------------------------------------------------------- /src/animations/webpack-logo-animation-spin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/src/animations/webpack-logo-animation-spin.js -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/CodeExample/CodeExample.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/src/components/CodeExample/CodeExample.vue -------------------------------------------------------------------------------- /src/components/CodeExample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/src/components/CodeExample/index.js -------------------------------------------------------------------------------- /src/components/ErrorComponent.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/LoadingComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/src/components/LoadingComponent.vue -------------------------------------------------------------------------------- /src/components/WebpackLogo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/src/components/WebpackLogo.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/src/main.js -------------------------------------------------------------------------------- /src/pages/ExampleFour.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pages/ExampleOne.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/src/pages/ExampleOne.vue -------------------------------------------------------------------------------- /src/pages/ExampleThree.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pages/ExampleTwo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/src/pages/ExampleTwo.vue -------------------------------------------------------------------------------- /src/pages/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/src/pages/Home.vue -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/utilities/asyncComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/src/utilities/asyncComponent.js -------------------------------------------------------------------------------- /src/utilities/asyncRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/src/utilities/asyncRoute.js -------------------------------------------------------------------------------- /src/utilities/fancyAsyncComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/src/utilities/fancyAsyncComponent.js -------------------------------------------------------------------------------- /static/img/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/static/img/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /static/img/icons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/static/img/icons/android-chrome-512x512.png -------------------------------------------------------------------------------- /static/img/icons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/static/img/icons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /static/img/icons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/static/img/icons/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /static/img/icons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/static/img/icons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /static/img/icons/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/static/img/icons/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /static/img/icons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/static/img/icons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /static/img/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/static/img/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /static/img/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/static/img/icons/favicon-16x16.png -------------------------------------------------------------------------------- /static/img/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/static/img/icons/favicon-32x32.png -------------------------------------------------------------------------------- /static/img/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/static/img/icons/favicon.ico -------------------------------------------------------------------------------- /static/img/icons/msapplication-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/static/img/icons/msapplication-icon-144x144.png -------------------------------------------------------------------------------- /static/img/icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/static/img/icons/mstile-150x150.png -------------------------------------------------------------------------------- /static/img/icons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/static/img/icons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/static/manifest.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/code-splitting-examples/HEAD/yarn.lock --------------------------------------------------------------------------------