SolidJSS
SolidJSโ€ข2y ago
Bit

How to set URL for static assets?

Trying to have static files served from S3.

import { defineConfig } from "@solidjs/start/config";

export default defineConfig({
  server: {
    preset: "aws_lambda",
    serveStatic: false,
    output: { dir: 'dist' },
  }
});
Was this page helpful?