Created
November 20, 2017 23:19
-
-
Save muloka/4818dc77fc37f71c853861295121e0a4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Failed to rebuild. | |
./dist/react-static-routes.js | |
Module build failed: Duplicate declaration "src_containers_bus_schedules___grotto_bay" | |
6 | import src_containers_Buses from '../src/containers/Buses' | |
7 | import src_containers_bus_schedules___grotto_bay from '../src/containers/bus-schedules/1-grotto-bay' | |
> 8 | import src_containers_bus_schedules___grotto_bay from '../src/containers/bus-schedules/3-grotto-bay' | |
| ^ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
getRoutes: async () => [ | |
{ | |
path: '/', | |
component: 'src/containers/Home', | |
}, | |
{ | |
path: '/buses', | |
component: 'src/containers/Buses', | |
}, | |
{ | |
path: '/buses/1-grotto-bay', | |
component: 'src/containers/bus-schedules/1-grotto-bay', | |
}, | |
{ | |
path: '/buses/3-grotto-bay', | |
component: 'src/containers/bus-schedules/3-grotto-bay', | |
}, | |
], |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment