Skip to content

Superstatic & HTML5 Urls #213

@jbeckton

Description

@jbeckton

Building an Angular 2 SPA. I have read about issues with Angular routes / HTML 5 urls but every thing I have tried to fix this does not work, I guess I am missing something. Not sure if its BS or Superstatic.

http://localhost:3000/home

/home is a route within my application, there is no home directory in my application structure. I get error "Cannot GET /home"

gulpfile.js

gulp.task('serve', function() {

 return browserSync.init({
    port: 3000,
    files: ['www/**/*.{html,htm,css,js}'], 
    injectChanges: true,
    logFileChanges: true,
    logLevel: 'info',    
    notify: true,
    open: "ui", 
    reloadDelay: 2000, // give typescript compilation time to complete
    reloadDebounce: 2000,
    ghostMode: false,
    server: {
        baseDir: ['www'],
        middleware: superstatic({ debug: true, config: "superstatic.json" })
    }
});
})

superstatic.json

{ "rewrites": [ {"source":"/**","destination":"/index.html"} ] }

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions