You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ddix-solid/app.config.timestamp_171568...

20 lines
423 B
JavaScript

// app.config.ts
import { defineConfig } from "@solidjs/start/config";
import pkg from "@vinxi/plugin-mdx";
var { default: mdx } = pkg;
var app_config_default = defineConfig({
extensions: ["mdx", "md"],
vite: {
plugins: [
mdx.withImports({})({
jsx: true,
jsxImportSource: "solid-js",
providerImportSource: "solid-mdx"
})
]
}
});
export {
app_config_default as default
};