mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-11-23 22:26:16 +03:00
Try local import.
This commit is contained in:
parent
6f35f55021
commit
e3e0ffdd7e
@ -1,4 +1,5 @@
|
||||
import kleur from "kleur";
|
||||
import something from './something.ts'
|
||||
kleur.enabled = true;
|
||||
|
||||
export async function environmentVariable(name) {
|
||||
@ -15,7 +16,7 @@ export async function environmentVariable(name) {
|
||||
}
|
||||
|
||||
export async function hello(name) {
|
||||
return `149 ${name}!!`;
|
||||
return `${something} 149 ${name}!!`;
|
||||
}
|
||||
|
||||
function waitFor(ms) {
|
||||
|
4
examples/pokedex/something.ts
Normal file
4
examples/pokedex/something.ts
Normal file
@ -0,0 +1,4 @@
|
||||
const something = 'abcd1234'
|
||||
|
||||
export default something
|
||||
|
Loading…
Reference in New Issue
Block a user